home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / apps.to.go / DTS.Lib / DTS.Lib.headers / ViewHier.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-10  |  979 b   |  39 lines  |  [TEXT/MPS ]

  1. #ifndef __VIEWHIER__
  2. #define __VIEWHIER__
  3.  
  4. #ifndef __TYPES__
  5. #include <Types.h>
  6. #endif
  7.  
  8.  
  9.  
  10. OSErr            VHInitDocument(FileRecHndl frHndl);
  11.     /*
  12.     **    ¶ Given document handle, present style dialog for document.
  13.     **
  14.     **    This needs to be called by the application to create the
  15.     **    View Hierarchy window. */
  16.  
  17. long            VHFileTypeSize(void);
  18.     /*
  19.     **    ¶ Support function for View Hierarchy window/document.
  20.     */
  21.  
  22. void            VHRootInfo(TreeObjHndl root, char *cptr);
  23.     /*
  24.     **    ¶ Support function for View Hierarchy window/document.
  25.     */
  26.  
  27. void            VHFileRecInfo(TreeObjHndl root, char *cptr);
  28.     /*
  29.     **    ¶ Support function for View Hierarchy window/document.
  30.     **
  31.     **    These functions are in the framework to support the View Hierarchy debugging window.
  32.     **    The sample application AppWannabe has these calls in it.  They can be conditionally
  33.     **    removed by setting the compile variable VH_VERSION to 0.  You should never have to
  34.     **    call them directly, so therefore I didn’t bother documenting them. */
  35.  
  36.  
  37.  
  38. #endif
  39.